AtCoder Beginner Contest 196 C
(工事中)
解き方
解答例
下は上記の方法で解いたときの提出結果である。また、その提出の際に提出したソースコードをその下に転記する。
code: C
int main () {
int n_len = 0;
int ans = 0;
int res = 0;
res = scanf("%s", n);
n_len = strlen(n);
if (n_len % 2 == 0) {
int i = 0;
int isPlus1 = 0;
int isNotPlus1 = 0;
int ans_small = 1;
for (int i = 0; i < n_len / 2 - 1; i++) {
if (i == 0) {
}
for (int j = i + 1; j < n_len / 2; j++) {
}
}
if (n_len / 2 - 1 < 1) {
ans -= 1;
}
for (int i = 0; i < n_len / 2; i++) {
if (isPlus1 < 1) {
isNotPlus1 = 1;
}
}
if (isNotPlus1 < 1) {
isPlus1 = 1;
}
}
}
if (isNotPlus1 == 0) {
ans += 1;
}
for (int i = 0; i < n_len / 2 - 1; i++) {
ans_small *= 10;
}
ans += ans_small - 1;
} else {
ans = 1;
for (int i = 0; i < n_len / 2; i++) {
ans *= 10;
}
ans -= 1;
}
printf("%d\n",ans);
return 0;
}
私の提出一覧
table: submissions_atcoder_begginer_contest_196_C
提出のURL 提出時刻 結果 備考
感想